home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / apps / gmemusage / process.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  57 lines

  1. /*
  2.  * process.h
  3.  *
  4.  * Header file for process.c
  5.  *
  6.  * Copyright 1994, Silicon Graphics, Inc.
  7.  * All Rights Reserved.
  8.  *
  9.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  10.  * the contents of this file may not be disclosed to third parties, copied or
  11.  * duplicated in any form, in whole or in part, without the prior written
  12.  * permission of Silicon Graphics, Inc.
  13.  *
  14.  * RESTRICTED RIGHTS LEGEND:
  15.  * Use, duplication or disclosure by the Government is subject to restrictions
  16.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  17.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  18.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  19.  * rights reserved under the Copyright Laws of the United States.
  20.  */
  21.  
  22. #define IRIX "Irix"
  23.  
  24. typedef struct tagProgram {
  25.     /*
  26.      * Stuff collected by GetProcInfo
  27.      */
  28.     char *progName;
  29.     char *mapName, *mapType;
  30.     long size, resSize, weightSize, privSize;
  31.     int pid;
  32.     int nProc;
  33.  
  34.     /*
  35.      * Stuff used in drawing
  36.      */
  37.     int value;
  38.     int secondValue;
  39.     int labelOffset;
  40.     int color;
  41.     unsigned int skip : 1;
  42.     unsigned int special : 1;
  43.     unsigned int print : 1;
  44.     long top, height, center;
  45.  
  46.     /*
  47.      * List linkage
  48.      */
  49.     struct tagProgram *next, *prev;
  50. } PROGRAM;
  51.  
  52. extern void GetProcInfo(char *procName, PROGRAM **all, PROGRAM **proc);
  53.  
  54. extern void FreeUsage(PROGRAM *usage);
  55.  
  56. extern void GetObjInfo(char *objName, PROGRAM **all, PROGRAM **objp);
  57.